class class_desc
{
public:
virtual void *create()=0;
virtual char *get_name()=0;
virtual int get_type()=0;
};
None
This class holds the description for the classes defined in Fly3D plug-ins. Each Fly3D plug-in will enumerate a fixed number of instances to this class and each will represent a game object. Its virtual functions are used to create and get information about the plug-in object class.